home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / XQLCALLS.H < prev    next >
Text File  |  1993-06-10  |  760b  |  36 lines

  1. /**************************************************
  2. *
  3. * FILE NAME:  xqlcalls.h  TITLE:  XQL API functions 
  4. *
  5. * AUTHOR:       Ken North
  6. *
  7. * SYNOPSIS: 
  8. *
  9. *    Function prototypes for Netware SQL's 
  10. *    XQL Manager (XQLM)
  11. *
  12. ***************************************************/
  13.  
  14. #ifndef __XQLCALLS_H
  15. #define __XQLCALLS_H
  16.  
  17. int XQLCompile( int, int *, char * );
  18. int XQLCursor( int * );
  19. int XQLDescribe ( int, int, int *, int *,
  20.     int *, int *, int *, char * );
  21.  
  22. int XQLExec( int );
  23. int XQLFetch ( int , int, int *, char *, 
  24.                 long *, int, int );
  25. int XQLFree( int );
  26.  
  27. int XQLLogin( char *, char *, char *,
  28.         char *, char *, int );
  29. int XQLLogout(void);
  30. int XQLStop(void);
  31.  
  32. int XQLSubst ( int,  int, int, char *, 
  33.         int,  char * );
  34.  
  35. #endif
  36.